home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / e_os300b / wc_hello / test.c < prev   
Encoding:
C/C++ Source or Header  |  1996-11-26  |  634 b   |  13 lines

  1. //╔══════════════════════════════════════════════════════════════════════════╗
  2. //║                                                                          ║
  3. //║ This example show how to use EOSLITE with Watcom C                       ║
  4. //║                                                                          ║
  5. //║                                                                          ║
  6. //║                                                                          ║
  7. //╚══════════════════════════════════════════════════════════════════════════╝
  8.  
  9. void main()
  10. {
  11.   printf("    ■ Hello world...\x0D\x0A");
  12.   exit(0);
  13. }